.main,
body {
  min-height: 100vh;
}
.chat-header__avatar,
.header__btn--ghost,
.header__btn--outline,
.header__logo,
body {
  color: var(--text-primary);
}
.chat-submit-btn,
.header__btn {
  font-family: inherit;
  cursor: pointer;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;
  --bg-elevated: #1a1a1a;
  --bg-hover: #242424;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #6b6b6b;
  --accent-primary: #ffffff;
  --accent-secondary: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  --font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
.hidden,
.input-group[style*="display: none"],
[x-cloak] {
  display: none !important;
}
.header,
.header__logo {
  display: flex;
  align-items: center;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  cursor: pointer !important;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: 0 0;
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.header__logo {
  gap: 10px;
}
.chat-header,
.header__nav {
  align-items: center;
  display: flex;
}
.header__logo-icon {
  width: 32px;
  height: 32px;
}
.header__logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.header__nav {
  gap: 12px;
}
.header__btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.header__btn--ghost {
  background: 0 0;
  border: none;
}
.header__btn--ghost:hover {
  background: var(--bg-hover);
}
.header__btn--outline {
  background: 0 0;
  border: 1px solid var(--border-strong);
}
.header__btn--outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.main {
  padding-top: 80px;
}
.chat-section {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.chat-form__hidden {
  display: none;
}
.chat-window {
  flex: 1;
  max-width: 600px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  max-height: 80vh;
}
.chat-header {
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-subtle);
}
.chat-header__info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.chat-header__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--bg-hover) 0,
    var(--bg-elevated) 100%
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-header__avatar svg {
  width: 28px;
  height: 28px;
}
.chat-header__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.chat-header__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: 2s infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.chat-header__badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--bg-hover);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}
.chat-messages {
  flex: 1;
  padding: 24px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.chat-messages__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 16px;
}
.chat-actions {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-subtle);
  /* background: var(--bg-tertiary); */
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
}
.chat-date {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  padding: 8px 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  align-self: center;
  margin-bottom: 8px;
}
.message {
  display: flex;
  gap: 12px;
  max-width: 85%;
  animation: 0.3s ease-out messageIn;
}
@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message--bot {
  align-self: flex-start;
}
.message--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.message__avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
}
.message__avatar svg {
  width: 20px;
  height: 20px;
}
.message--user .message__avatar {
  background: var(--accent-secondary);
  color: #fff;
}
.message__content {
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.message--bot .message__content {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-bottom-left-radius: 4px;
}
.message--user .message__content {
  background: var(--accent-secondary);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.typing-indicator__dots {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 4px;
}
.input-group,
.input-row {
  gap: 12px;
  display: flex;
}
.typing-indicator__dot {
  width: 8px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 50%;
  animation: 1.4s ease-in-out infinite typingBounce;
}
.typing-indicator__dot:first-child {
  animation-delay: 0s;
}
.typing-indicator__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator__dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingBounce {
  0%,
  100%,
  60% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
}
.chat-inputs {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  margin: 0;
}
.answer-btn,
.chat-input {
  border: 1px solid var(--border-medium);
  transition: all var(--transition-fast);
}
.input-group {
  flex-direction: column;
}
.chat-input {
  flex: 1;
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 14px 18px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  outline: 0;
}
.chat-input::placeholder {
  color: var(--text-tertiary);
}
.chat-input:focus {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.chat-input--full,
.why-invest__content {
  width: 100%;
}
.chat-input._error,
.chat-input.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}
.chat-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width:100%;
  margin-top:10px;
}
.chat-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.chat-submit-btn:active {
  transform: translateY(0);
}
.quiz-btn--correct .quiz-btn__icon--correct,
.quiz-btn--incorrect .quiz-btn__icon--incorrect {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.chat-submit-btn svg {
  width: 18px;
  height: 18px;
}
.chat-submit-btn--final {
  background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
  color: #fff;
}
.answer-btn,
.quiz-btn {
      font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    cursor: pointer;
    width: 100%;
}
.answer-buttons,
.quiz-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.answer-btn {
  border-radius: var(--radius-md);
  animation: 0.3s forwards fadeIn;
  opacity: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.answer-btn:hover,
.quiz-btn:hover:not(:disabled):not(.quiz-btn--correct):not(
    .quiz-btn--incorrect
  ) {
  background: var(--bg-hover);
  border-color: var(--accent-secondary);
}
.quiz-btn {
  position: relative;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  transition: 0.3s;
}
.info-panel__title,
.why-invest__title {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.quiz-btn:disabled {
  cursor: default;
}
.quiz-btn__text {
  display: block;
  line-height: 1.4;
  padding-right: 30px;
}
.quiz-btn__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.quiz-btn__icon svg {
  width: 14px;
  height: 14px;
}
.quiz-btn__icon--correct {
  background: #22c55e;
  color: #fff;
}
.quiz-btn__icon--incorrect {
  background: #ef4444;
  color: #fff;
}
.footer__text a:hover,
.info-panel__icon {
  color: var(--text-primary);
}
.quiz-btn--correct {
  border-color: #22c55e !important;
  border-width: 2px;
  background: rgba(34, 197, 94, 0.15) !important;
  animation: 0.6s correctPulse;
}
.quiz-btn--incorrect {
  border-color: #ef4444 !important;
  border-width: 2px;
  background: rgba(239, 68, 68, 0.15) !important;
  animation: 0.6s incorrectShake;
}
.footer,
.info-panel__note {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}
.quiz-btn--dimmed {
  opacity: 0.4;
  pointer-events: none;
}
@keyframes correctPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
@keyframes incorrectShake {
  0%,
  100% {
    transform: translateX(0);
  }
  15%,
  45% {
    transform: translateX(-6px);
  }
  30%,
  60% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-3px);
  }
  90% {
    transform: translateX(3px);
  }
}
.info-panel {
  width: 320px;
  flex-shrink: 0;
}
.info-panel__content {
  position: sticky;
  top: 120px;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}
.info-panel__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.info-panel__icon svg {
  width: 100%;
  height: 100%;
}
.info-panel__title {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 8px;
}
.feature-item,
.info-panel__subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.info-panel__subtitle {
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}
.info-panel__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__text,
.info-panel__note {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}
.feature-item svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
}
.info-panel__note {
  line-height: 1.6;
  padding-top: 20px;
}
.additional-blocks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
.footer {
  padding: 32px 24px;
}
.iti__country-list,
.iti__selected-dial-code {
  color: #f5f5f7 !important;
}
.footer__text a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
@media (max-width: 768px) {
  .info-panel {
    display: none;
  }
  .chat-window {
    max-width: 100%;
  }
}
.visible {
  display: flex !important;
}
.iti__arrow {
  border-top: 4px solid #f5f5f7 !important;
}
.iti__country-list {
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  font-family: Roboto, sans-serif !important;
}
.why-invest {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
  align-items: center;
}
.why-invest__image {
  width: 100%;
  max-width: 600px;
}
.platforms,
.testimonials {
  max-width: 1000px;
  text-align: center;
}
.why-invest__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.why-invest__title {
  font-size: 2rem;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: center;
}
.why-invest__list li,
.why-invest__text {
  font-size: 1rem;
  color: var(--text-secondary);
}
.why-invest__text {
  line-height: 1.7;
  margin-bottom: 24px;
}
.why-invest__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 32px;
}
.why-invest__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-invest__list li {
  line-height: 1.6;
}
.why-invest__list-title {
  color: #ef4444;
  font-weight: 600;
}
.platforms {
  padding: 80px 24px;
  margin: 0 auto;
}
.platforms__title,
.testimonials__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.platforms__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.platforms__grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.platform-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.platform-card__icon {
  width: 64px;
  height: 64px;
}
.platform-card__icon svg {
  width: 100%;
  height: 100%;
}
.platform-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonials {
  padding: 80px 24px;
  margin: 0 auto;
}
.testimonials__title .text-accent {
  color: #ef4444;
}
.testimonials__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.testimonials__slider {
  overflow: hidden;
  margin-bottom: 32px;
}
.testimonials__track {
  display: flex;
  transition: transform 0.4s;
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.testimonial-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-card__meta {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.testimonials__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.testimonials__btn:hover:not(:disabled) {
  background: var(--bg-hover);
  border-color: var(--text-primary);
}
.testimonials__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.testimonials__btn svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 640px) {
  .header {
    padding: 12px 16px;
  }
  .chat-header__badge,
  .header__logo-text {
    display: none;
  }
  .chat-section {
    padding: 20px 16px;
  }
  .chat-window {
    border-radius: var(--radius-lg);
    min-height: 500px;
  }
  .chat-header,
  .chat-messages {
    padding: 16px;
  }
  .message {
    max-width: 90%;
  }
  .message__avatar {
    width: 28px;
    height: 28px;
  }
  .message__content {
    padding: 12px 14px;
    font-size: 0.875rem;
  }
  .chat-inputs {
    padding: 12px 16px 16px;
  }
  .input-row {
    flex-direction: column;
  }
  .chat-submit-btn {
    width: 100%;
  }
  .why-invest {
    padding: 40px 16px;
  }
  .why-invest__title {
    font-size: 1.5rem;
  }
  .platforms,
  .testimonials {
    padding: 60px 16px;
  }
  .platforms__title,
  .testimonials__title {
    font-size: 1.75rem;
  }
  .platforms__subtitle,
  .testimonial-card__text {
    font-size: 1rem;
  }
  .platforms__grid {
    gap: 20px;
  }
  .platform-card {
    width: 150px;
    height: 150px;
  }
  .platform-card__icon {
    width: 48px;
    height: 48px;
  }
  .testimonial-card {
    padding: 24px;
  }
}
.gf-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gf-modal--entering {
  transition: opacity 0.2s ease-out;
}
.gf-modal--leaving {
  transition: opacity 0.15s ease-in;
}
.gf-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
}
.gf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.gf-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
}
.gf-modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.gf-modal__close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.gf-modal__close svg {
  width: 20px;
  height: 20px;
}
.gf-modal__content {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(80vh - 80px);
}
.gf-modal__content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
  color: var(--text-primary);
}
.gf-modal__content li,
.gf-modal__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.gf-modal__content h3:first-child {
  margin-top: 0;
}
.gf-modal__content p {
  line-height: 1.7;
  margin-bottom: 12px;
}
.gf-modal__content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.gf-modal__content li {
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.gf-modal__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-secondary);
}
.gf-notification {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  z-index: 1001;
  max-width: 400px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.gf-notification--entering {
  transition: 0.25s ease-out;
}
.gf-notification--leaving {
  transition: 0.2s ease-in;
}
.gf-notification--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
}
.gf-notification--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.gf-notification__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
}
.gf-notification__icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 12px;
  color: var(--accent-secondary);
}
@media (max-width: 480px) {
  .testimonials {
    max-width: 95%;
    padding: 40px 12px;
  }
  .testimonials__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .testimonials__subtitle {
    font-size: 0.875rem;
    margin-bottom: 32px;
  }
  .testimonials__subtitle br {
    display: none;
  }
  .testimonial-card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }
  .testimonial-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .testimonial-card__name,
  .why-invest__content p {
    font-size: 0.9375rem;
  }
  .gf-notification__text,
  .testimonial-card__meta {
    font-size: 0.8125rem;
  }
  .platforms__grid,
  .testimonials__nav {
    gap: 12px;
  }
  .testimonials__btn {
    width: 42px;
    height: 42px;
  }
  .testimonials__btn svg {
    width: 18px;
    height: 18px;
  }
  .quiz-btn {
    padding: 12px 16px;
    font-size: 0.875rem;
  }
  .quiz-btn__text {
    padding-right: 26px;
  }
  .quiz-btn__icon {
    right: 12px;
    width: 22px;
    height: 22px;
  }
  .quiz-btn__icon svg {
    width: 12px;
    height: 12px;
  }
  .header {
    padding: 10px 12px;
  }
  .header__logo-icon {
    width: 28px;
    height: 28px;
  }
  .header__nav {
    gap: 6px;
  }
  .header__btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .gf-modal-overlay {
    padding: 12px;
  }
  .gf-modal {
    border-radius: var(--radius-lg);
    max-height: 90vh;
  }
  .gf-modal__header {
    padding: 14px 16px;
  }
  .gf-modal__title,
  .platform-card__name {
    font-size: 1rem;
  }
  .gf-modal__close {
    width: 32px;
    height: 32px;
  }
  .gf-modal__content {
    padding: 16px;
    max-height: calc(90vh - 60px);
  }
  .gf-modal__content h3 {
    font-size: 0.9375rem;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .gf-modal__content li,
  .gf-modal__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .gf-notification {
    top: 70px;
    padding: 12px 16px;
    width: calc(100% - 24px);
  }
  .gf-notification__icon {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
  }
  .footer {
    padding: 16px 12px;
  }
  .footer__text {
    font-size: 0.75rem;
  }
  .platforms,
  .why-invest {
    padding: 40px 12px;
  }
  .platforms__title,
  .why-invest__title {
    font-size: 1.5rem;
  }
  .platform-card {
    padding: 20px 16px;
  }
  .platform-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
}
